/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e2f;
    color: #fff;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============ Header Section ============ */
header {
    background: url('https://source.unsplash.com/1600x900/?technology,data') no-repeat center center/cover;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    background-attachment: fixed; /* Parallax effect */
}

.date-div{
        position: absolute;
        margin-top: -100px;
        margin-left: -100px;
}

img {
    border-radius: 50%;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}
.hollow-circle {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    line-height: 2;
  }


header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .nav-links {
    list-style: none;
    display: flex;
}

header .nav-links li {
    margin: 0 15px;
}

header .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

header .nav-links a:hover {
    color: #00ff88;
}

header .hero h1 {
    font-size: 48px;
    margin: 20px 0;
}

header .hero .typing {
    color: #00ff88;
    border-right: 3px solid #fff;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: typing 4s steps(40, end) infinite, blink 0.7s infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

header .hero p {
    font-size: 18px;
    margin: 10px 0;
}

header .btn {
    background: #00ff88;
    color: #1e1e2f;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}

header .btn:hover {
    background: #ffcc00;
    transform: scale(1.1);
}

/* ============ Fade-in Animation for Sections ============ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ About Section ============ */
.about {
    padding: 60px 0;
    background: #2a2a40;
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* ============ Skills Section ============ */
.skills {
    padding: 60px 0;
    background: #1e1e2f;
}

.skills h2 {
    text-align: center;
    margin-bottom: 40px;
}

.skills-container {
    overflow: hidden;
    position: relative;
}

.skills-scroll {
    display: flex;
    gap: 20px;
    animation: scrollSkills 20s linear infinite;
}

.skills-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollSkills {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.skill {
    background: #2a2a40;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    min-width: 200px;
}

.skill i {
    font-size: 40px;
    color: #00ff88;
}

.icon-color{
    color:#00ff88
}
.skill h3 {
    margin: 10px 0;
}

/************Certificates****************************/

.certificates {
    background: #1e1e2f;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 40px;
  }

.accordion-item {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  
  .accordion-header {
    color: white;
    width: 100%;
    background-color: #2a2a40;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    /* transition: background-color 0.3s; */ 
  }
  
  .accordion-header:hover {
    background-color: #2a2a40;
  }
  
  .accordion-header i {
    transition: transform 0.3s ease;
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    text-align: center;
    transition: max-height 0.4s ease;
  }
  
  .accordion-content.active {
    padding: 1rem 1.5rem;
    max-height: 1000px;
  }
  
  .item-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .item-list li {
    margin-bottom: 0.75rem;
  }
  
  .item-list a {
    text-decoration: none;
    color: #0077cc;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .item-list a:hover {
    color: #005fa3;
    text-decoration: underline;
  }

/* ============ Get in Touch Section ============ */
.get-in-touch {
    padding: 60px 0;
    background: #2a2a40;
    text-align: center;
}

.get-in-touch h2 {
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: pink;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    transition: transform 0.2s ease-in-out, background 0.3s ease;
}

.social-links a i {
    font-size: 22px;
    color: #00ff88;
}

.social-links a:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.1);
}

/* ============ Footer ============ */
footer {
    background: #1e1e2f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

